crypto/tls.clientHelloMsg.supportedSignatureAlgorithms (field)
17 uses
crypto/tls (current package)
handshake_client.go#L130: hello.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
handshake_client.go#L133: hello.supportedSignatureAlgorithms = testingOnlyForceClientHelloSignatureAlgorithms
handshake_messages.go#L83: supportedSignatureAlgorithms []SignatureScheme
handshake_messages.go#L154: if len(m.supportedSignatureAlgorithms) > 0 {
handshake_messages.go#L159: for _, sigAlgo := range m.supportedSignatureAlgorithms {
handshake_messages.go#L496: m.supportedSignatureAlgorithms = append(
handshake_messages.go#L497: m.supportedSignatureAlgorithms, SignatureScheme(sigAndAlg))
handshake_server.go#L947: SignatureSchemes: clientHello.supportedSignatureAlgorithms,
handshake_server_tls13.go#L431: if len(hs.clientHello.supportedSignatureAlgorithms) == 0 {
handshake_server_tls13.go#L444: hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
handshake_server_tls13.go#L539: len(ch.supportedSignatureAlgorithms) != len(ch1.supportedSignatureAlgorithms) ||
handshake_server_tls13.go#L559: for i := range ch.supportedSignatureAlgorithms {
handshake_server_tls13.go#L560: if ch.supportedSignatureAlgorithms[i] != ch1.supportedSignatureAlgorithms[i] {
key_agreement.go#L209: signatureAlgorithm, err = selectSignatureScheme(ka.version, cert, clientHello.supportedSignatureAlgorithms)
key_agreement.go#L330: if !isSupportedSignatureAlgorithm(signatureAlgorithm, clientHello.supportedSignatureAlgorithms) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |